AI Verified

Name

Change 'add to cart' text

About

https://www.codegearthemes.com/blogs/woocommerce/woocommerce-how-to-change-add-to-cart-button-text

Language

PHP

Rating

Voted: 1 by 3 user(s)

Codevault

Moonlight Digital

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

12/04/2024

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Change 'add to cart' text

 
                    
1// To change add to cart text on single product page
2add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' );
3function woocommerce_custom_single_add_to_cart_text() {
4 return __( 'Add To Quote', 'woocommerce' );
5}
6 
7// To change add to cart text on product archives(Collection) page
8add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );
9function woocommerce_custom_product_add_to_cart_text() {
10 return __( 'Add To Quote', 'woocommerce' );
11}

1

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Hide shipping rates when free shipping is available

Added: 1 year ago

Last Updated: 1 year ago

WooCommerce

AI Verified

0

WooCommerce Add Custom Content To The Bottom Of The Order Received Thank You Page

Added: 1 year ago

Last Updated: 1 year ago

Adding custom content at the bottom of the the WooCommerce Order Received Thank You page is a great way to sell upsell products, ask users to rate your store, capture permission for email subscription...

WooCommerce

AI Verified

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

1

Change 'add to cart' text

Added: 1 year ago

Last Updated: 4 months ago

https://www.codegearthemes.com/blogs/woocommerce/woocommerce-how-to-change-add-to-cart-button-text